home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 11157 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  636 b 

  1. Path: news1.radix.net!news
  2. From: jfw@radix.net (Jim Ward)
  3. Newsgroups: comp.lang.c
  4. Subject: Four * Code
  5. Date: Fri, 22 Mar 1996 02:52:28 GMT
  6. Organization: RadixNet Internet Services
  7. Message-ID: <4it4f6$oe4@news1.radix.net>
  8. NNTP-Posting-Host: dialin54.annex3.radix.net
  9. X-Newsreader: Forte Free Agent 1.0.82
  10.  
  11. When I first started in C, I ran into single *s: char*
  12. Then double *s: char** argv
  13. and yesterday I ran into a triple *: char*** nmptr;
  14. nmptr is an argument for the UNIX function scandir(), and is to be
  15. filled with the address of an array of pointers to filenames in a
  16. directory. Has anyone ever run into a quadruple * or beyond? 
  17.  
  18.